home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / db / Db_WriteEntry.c < prev    next >
C/C++ Source or Header  |  1989-06-16  |  3KB  |  108 lines

  1. /* 
  2.  * Db_WriteEntry.c --
  3.  *
  4.  *    Source code for the Db_WriteEntry procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /sprite/src/lib/c/db/RCS/Db_WriteEntry.c,v 1.5 89/06/15 22:45:33 douglis Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20.  
  21. #include <db.h>
  22. #include "dbInt.h"
  23.  
  24.  
  25. /*
  26.  *----------------------------------------------------------------------
  27.  *
  28.  * Db_WriteEntry --
  29.  *
  30.  *    Write a buffer into a specified location in the shared database.
  31.  *    This opens and locks the file, writes the data, and closes the
  32.  *    file.  The lock is polled if necessary.  The file is opened with
  33.  *    the default mode as defined above.  
  34.  *
  35.  * Results:
  36.  *    -1 indicates an error, in which case errno indicates more details.
  37.  *    0 indicates success.
  38.  *
  39.  * Side effects:
  40.  *    The global database is modified.
  41.  *
  42.  *----------------------------------------------------------------------
  43.  */
  44.  
  45. int
  46. Db_WriteEntry(file, buffer, index, size, lockHow)
  47.     char *file;
  48.     char *buffer;
  49.     int index;
  50.     int size;
  51.     Db_LockHow lockHow;
  52. {
  53.     int status;
  54.     int offset;
  55.     int streamID;
  56.     int bytesWritten;
  57.     Db_Handle handle;
  58.     
  59. #ifdef DEBUG_DB
  60.     syslog(LOG_INFO, "Debug msg: Db_WriteEntry(%s) called.", file);
  61. #endif    
  62.     streamID = open(file, O_WRONLY | O_CREAT, FILE_MODE);
  63.     if (streamID == -1) {
  64.     syslog(LOG_ERR, "Db_WriteEntry: error opening file %s: %s.\n", file,
  65.            strerror(errno));
  66.     return(streamID);
  67.     }
  68.  
  69.     offset = index * size;
  70.     status = lseek(streamID, (long) offset, L_SET);
  71.     if (status == -1) {
  72.     return(status);
  73.     }
  74.     /*
  75.      * Fake a Db_Handle for DbLockDesc.
  76.      */
  77.     handle.streamID = streamID;
  78.     handle.lockHow = lockHow;
  79.     handle.lockType = LOCK_EX;
  80. #ifndef CLEAN
  81.     handle.fileName = file;
  82. #endif /* CLEAN */
  83.     status = DbLockDesc(&handle);
  84.     if (status == -1) {
  85. #ifdef DEBUG_DB
  86.     syslog(LOG_INFO, "Debug msg: Db_WriteEntry(%s) returning %x.", file, status);
  87. #endif    
  88.     return(status);
  89.     }
  90.     
  91.     bytesWritten = write(streamID, buffer, size);
  92.     if (bytesWritten == -1) {
  93.     status = -1;
  94.     } else if (bytesWritten != size) {
  95.     status = -1;
  96.     errno = 0;
  97.     } else {
  98.     status = 0;
  99.     }
  100.     (void) flock(streamID, LOCK_EX | LOCK_UN);
  101.     (void) close(streamID);
  102.  
  103. #ifdef DEBUG_DB
  104.     syslog(LOG_INFO, "Debug msg: Db_WriteEntry(%s) returning %x.", file, status);
  105. #endif    
  106.     return(status);
  107. }
  108.